home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / nimgvb10.000 / readme.txt < prev   
Text File  |  1996-04-08  |  8KB  |  247 lines

  1. ------------------------------------------------------------------------
  2.  
  3. NED Image OCX
  4.  
  5. Copyright (c) 1995-1996 Northeast Data Corp.
  6.  
  7. All Rights Reserved
  8.  
  9. ------------------------------------------------------------------------
  10.  
  11. Demo Release 1.0 for 32-bit VB 4.0 users
  12. December 1995
  13.  
  14. This document describes the NED Image OCX Control. 
  15.  
  16.  
  17. CONTENTS
  18.  
  19. 1. Product Description
  20. 2. Legal Information
  21. 3. Installation
  22. 4. Usage
  23. 5. Ordering information
  24. 6. Release notes
  25.  
  26. ------------------------------------------------------------------------
  27.  
  28. 1. Product Description
  29.  
  30. The NED Image OCX Control is a 32-bit Microsoft Windows OLE custom 
  31. control that displays and prints various types of image files. It 
  32. works with TIFF, BMP, DIB, GIF, JPEG and Kodak Photo CD files.
  33.  
  34. It can be used with any host programming environment or application
  35. that supports 32-bit OCX controls. 
  36.  
  37. ------------------------------------------------------------------------
  38.  
  39. 2. Legal Information
  40.  
  41. The purchaser of the NED Image OCX Control is allowed to use it and
  42. distribute it in applications without paying any royalty, and without
  43. printing or displaying a copyright notice for the control. This only
  44. includes distribution of the NEDIMAGE.OCX control and supporting files. 
  45. It does not include distribution of documentation that comes with the 
  46. NED Image OCX Control. 
  47.  
  48. The purchaser of the NED Image OCX Control may distribute the control 
  49. with applications that are networked (multiple users accessing the 
  50. control from a file server) without paying any license fees to Northeast 
  51. Data Corp. 
  52.  
  53.  
  54. Portions of this software are based on the work of the Independent JPEG 
  55. Group.
  56.  
  57. Portions of this software Copyright (c) 1988-1995 Sam Leffler Copyright 
  58. (c) 1991-1995 Silicon Graphics, Inc.
  59.  
  60. ------------------------------------------------------------------------
  61.  
  62. 3. Installation
  63.  
  64. Note: OCX controls REQUIRE OLE V2.02 or higher. Lower versions will 
  65. cause the control registration to fail.
  66.  
  67. Create a temp directory on your hard disk and copy all files from
  68. the distribution disk to the directory. These files include:
  69.  
  70. README.TXT     (This file)
  71. MFC40.DLL      (Required for OCX) *
  72. MSVCRT40.DLL   (Required for OCX) *
  73. OLEPRO32.DLL   (Required for OCX) *
  74. PCDLIB32.DLL   (Required for OCX)
  75. NEDIMAGE.OCX   (NED Image OCX)
  76. NEDIMAGE.TLB   (NED Image OCX Type Library)
  77. FORM1.FRM      (VB 4.0 form definition file)
  78. FORM1.FRX      (VB 4.0 form definition file)
  79. PROJECT1.VBP   (VB 4.0 Project file)
  80.  
  81. (*) Denotes common file for most OCX controls
  82.  
  83. If you have downloaded the NIMGVB10.ZIP file, use PKUNZIP to extract the 
  84. files into the temp directory.
  85.  
  86. A 32-bit Microsoft Visual Basic 4.0 example application is provided with 
  87. the NED Image OCX control. You must have the 32-bit version of Microsoft 
  88. Visual Basic 4.0 installed on your machine to run this demo.
  89.  
  90. The example application allows you to 
  91. + open image files
  92. + change the color reduction method
  93. + display the image file on the screen
  94. + rotate the image file
  95. + change the fit type
  96. + print the image to a printer
  97.  
  98. The demo application is not crippled in any way.  The dialog specifying 
  99. that this is an unregistered version of the control does not appear in 
  100. the release version.
  101.  
  102. To run the sample application you must first register the NED Image 
  103. Control in the registry database.
  104. + Start the 32-bit version of Visual Basic 4.0.  
  105. + Select the Tools/Custom Controls menu item.  
  106. + Press the Browse button.  
  107. + Locate the NEDIMAGE.OCX file on your hard drive.  
  108. + Press OK.  This will register the OCX control.  
  109. + Press the OK button to dismiss the Custom Controls dialog.
  110.  
  111. This sample application includes a sample project called Project1.  Load 
  112. this project into VB and run the demo.
  113.  
  114. ------------------------------------------------------------------------
  115.  
  116. 4. Usage
  117.  
  118. PROPERTIES
  119. ----------
  120.  
  121. Picture    - The full file specification of the file containing the
  122. image to display.
  123.  
  124. FitType    -    
  125.  0 = Best Fit
  126.  1 = Horizontal Fit
  127.  2 = Vertical Fit
  128.  3 = One to One
  129.  
  130. AutoDisplay -     
  131.  True - Displays image as soon as it is loaded
  132.  False - Does not display image until Refresh is called
  133.  
  134. VScrollPos - Value of the Vertical Scroll position
  135.  
  136. HScrollPos - Value of the Horizontal Scroll position
  137.  
  138. ScrollBars -    
  139.  True - Show scroll bars if needed.
  140.  False - Hide scroll bars.
  141.  
  142. ColorReductionMethod - Returns the type of Color reduction method used.  
  143. This is a read-only property.
  144.  1 = OrderedDither
  145.  2 = ErrorDiffusionDither
  146.  3 = MedianCutQuant
  147.  
  148. TotalRotate - Returns the total amount the image has rotated.  This 
  149. is a read-only property.
  150.  90  - Image has been rotated 90 from original
  151.  180 - Image has been rotated 180 from original
  152.  270 - Image has been rotated 180 from original
  153.  
  154. NumScreenColors - Returns the number of colors the display is capable 
  155. of. This is a read-only property.
  156.  
  157. NumPrinterColors - Returns the number of colors the default printer is 
  158. capable of. This is a read-only property.
  159.  
  160. NumImageColors - Returns the number of colors in the original image. 
  161. This is a read-only property.
  162.  
  163. ImageHeight - Returns the original image height. This is a read-only 
  164. property.
  165.  
  166. ImageWidth - Returns the original image width. This is a read-only 
  167. property.
  168.  
  169.  
  170.  
  171. METHODS
  172. -------
  173.  
  174. Rotate90 - Rotates the image 90 degrees from its current location.
  175.  
  176. Rotate180 - Rotates the image 180 degrees from its current location.
  177.  
  178. Rotate270 - Rotates the image 270 degrees from its current location.
  179.  
  180. OrderedDither - Performs an ordered dither on the True Color image.
  181.  
  182. ErrorDiffusionDither - Performs an error diffusion dither on the True 
  183. Color image.
  184.  
  185. MedianCutQuant - Performs a median cut color reduction method on the 
  186. True Color Image.
  187.  
  188. GetLastError - Returns the Last Error that the NED Image OCX 
  189. encountered.
  190.  
  191. PrintImage - Prints the image with the given fit type to the printer.
  192.  
  193. Refresh - Refreshes/Redraws the image.
  194.  
  195. AboutBox - Displays the about box for the NED Image OCX.
  196.  
  197. ------------------------------------------------------------------------
  198.  
  199.    Northeast Data Corp.
  200.    2117 Buffalo Rd., Suite 290
  201.    Rochester, NY  14624
  202.  
  203. ------------------------------------------------------------------------
  204.  
  205. 5. Ordering Information
  206.  
  207. The easiest way to obtain a registered version is to type GO SWREG on
  208. Compuserve. The ID for the NED Image OCX is 8884. The ID for the source 
  209. code version of the control is 8885. After you provide the information, 
  210. Compuserve will send us a mail message. We will send you the software. 
  211. Compuserve will bill you and then pay us.
  212.  
  213.  
  214. To obtain the software directly from us, send a money order or a check
  215. drawn on a U.S bank to the address above.  Specify "NED Image OCX" and
  216. provide your full address. If you provide a Compuserve ID, we can send
  217. the software via e-mail.
  218.  
  219. The price of the NED Image OCX control is $199.00.
  220. The price of the NED Image OCX source code is $1199.00.
  221. Shipping and handling fees in the US are $15.00.
  222. Shipping and handling fees outside the US are $20.00.
  223. New York State residents must add 8% sales tax.
  224.  
  225. ------------------------------------------------------------------------
  226.  
  227. 6. Release notes
  228.  
  229.  
  230. Version 1.0 - December 1995
  231.  
  232. + First commercial release.
  233.     + There are bugs in some of the printer drivers that are 
  234. distributed with Windows 95 and Windows NT. Specifically, using an Epson 
  235. Stylus Color printer with the printer driver distributed with Windows NT 
  236. only allows for printing with 16 colors. Printing with the Epson Stylus 
  237. Color printer with the printer driver distributed with Window 95 does 
  238. not print at all.  To print with the Epson Stylus Color printer under 
  239. Windows, your users should use the Windows 3.11 driver available from 
  240. Epson.  The 1.06 or 2.03 driver included with the printer works fine and 
  241. prints in True Color. If you have a doubt about the NED Image OCX print 
  242. quality, first check to see if any updated drivers are available from 
  243. the printer manufacturer.  If you are still having problems with color 
  244. printing, please make sure you have configured your printer driver for 
  245. color. 
  246.     
  247.